home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
TOT
/
DEMO.EXE
/
arc
/
DEMIN1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-10
|
336b
|
17 lines
Program DemoInputOne;
{DEMIN1}
Uses CRT,
totINPUT;
begin
Clrscr;
Writeln('Press any key or mouse button combination. (Esc to quit)');
Key.SetDouble(true);
repeat
Key.GetInput;
GotoXY(1,2);
Write('You press key: ',Key.LastKey,' ');
until Key.LastKey = 27;
end.